the same as that in the previous example! 4: Inner join or join; It is the record that the returned field ID exists in both the table votemaster and voter.5: Cross join (full join) with no where Condition A cross
Assume that the following table is used:
One is the voting master table, and the other is the voter information table ~ Record the IP address of the voter and the corresponding voting type. The left-right connection is actually the result of our joint query. Which table prevails ~1: for example, right join or right outer join:Take the voter table on the right as the standard. The record in the left tab
statement:SELECT Persons.lastname, Persons.firstname, Orders.ordernofrom Persons on INNER JOIN Orders persons.id_p = Orders.id_porder by Persons.lastnameResult set:
LastName
FirstName
OrderNo
Adams
John
22456
Adams
John
24562
Carter
Thomas
77895
Carter
Thomas
44678
Differ
the same as that shown above!4: inner join or join; It is the record that the returned field ID exists in both the table votemaster and voter. 5: cross join (full join) cross join without the where Condition A cross
upper left and right connections)
2. Internal Connection1. Concept: inner join is a join that uses a comparison operator to compare the values of the columns to be joined.
2. Inner join: Join or
. This is often used in data analysis troubleshooting. You can also use database collection operations to achieve this function.Statement 11: for example, union join, the SQL environment that can be executed is not found.Select o. ID, O. ORDER_NUMBER, O. CUSTOMER_ID, C. ID, C. NAMEFrom orders o union join customers c o
connection and the internal connection. This is often used in data analysis troubleshooting. You can also use database collection operations to achieve this function.Statement 11: for example, union join, the SQL environment that can be executed is not found.Select O. ID, O. order_number, O. customer_id, C. ID, C. NameFrom orders o union
Original link: http://www.powerxing.com/sql-join/In general, the use/difference of four joins can be described as:
The LEFT join returns all records from the table (shop), even if there are no matching rows in the right table (Sale_detail).
Right outer join, returns all records in the right table, even if
right table, regardless of whether the table on the left has matching data: Select S.name,m.mark from student s right join Mark M on S.id=m.studentid Iv. fully connected-full join: Using the format as above has been explained above Remove the data from the left and right two tables, whether or not they match: Select S.name,m.mark from student s full join Mark M
two results were met, and the results were as follows: Second, left join connect-left join: Left join is to select all the tuples from the left table: Select S.name,m.mark from student s left join Mark M on S.id=m.studentid The above statement is the left side of the table, that is, the tuple in the student table is
The following is a 137-row SQL statement. If you understand this, I want to know about left join and inner join. (My personal opinion only)
The following is a piece of code:
Select num1, num2, num3, num4, num5, num6, num7, num8, num9, num10, area. areacode, area. areaname, num11
From(Select area_code areacode, area_nam
-right join: The right connection is to remove all data from the right table, regardless of whether the table on the left has matching data: Select S.name,m.mark from student s right join Mark M on S.id=m.studentid The above statement takes all the data from the Mark score table, regardless of whether there is a data match in the student table, as shown in: Iv. fully connected-full
: The right connection is to remove all data from the right table, regardless of whether the table on the left has matching data: Select S.name,m.mark from student s right join Mark M on S.id=m.studentid The above statement takes all the data from the Mark score table, regardless of whether there is a data match in the student table, as shown in: Iv. fully connected-full join: Remove the data from the lef
SQL table join query (inner join, full join, left join, right join)
Prerequisites: Assume that there are two tables, one is the student table and the other is the student renewal table
, you can use keyword join to get data from two tables If you want to list everyone's subscriptions, you can use the following SELECT statement SELECT Persons.lastname, Persons.firstname, Orders.orderno from
Persons
INNER JOIN Orders on
persons.id_p = Orders.id_p
ORDER by Persons.lastname
Result set:
LastName
FirstName
OrderNo
, regardless of whether the table on the left has matching data: Select S.name,m.mark from student s right join Mark M on S.id=m.studentid The above statement takes all the data from the Mark score table, regardless of whether there is a data match in the student table, as shown in: Iv. fully connected-full join: Remove the data from the left and right two tables, whether or not they match: Select S.name,
Cross Jointable2Select * fromTable1,table2--The following three statements have the same effectSelect * fromTable1 A,table2 bwhereb.ID=a.idSelect * fromTable1 A Cross JoinTable2 bwhereb.ID=a.idSelect * fromTable1 AInner JoinTable2 b onb.ID=a.ID2 Cross Apply,outer apply(Cross Apply,outer apply is new in SQL Server 2005)There is a cross join in SQL Server 2000
statement, which in this case refers to Categories.CategoryID. You can also link multiple on clauses in a JOIN statement, using the following syntax: SELECT fieldsFrom table1 INNER JOIN table2On table1.field1 compopr table2.field1 andOn table1.field2 compopr table2.field2 OROn table1.field3 compopr table2.field3; You can also nest
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.